Rename GPSBabelFE to GPSBabel in many (though not all) places.
authorrobertl <robertl@f51c46e8-681c-474f-0cfe-069cfd0219fb>
Sun, 6 Sep 2009 17:04:36 +0000 (17:04 +0000)
committerrobertl <robertl@f51c46e8-681c-474f-0cfe-069cfd0219fb>
Sun, 6 Sep 2009 17:04:36 +0000 (17:04 +0000)
git-svn-id: http://gpsbabel.googlecode.com/svn/trunk@3781 f51c46e8-681c-474f-0cfe-069cfd0219fb

gpsbabel/gui/app.pro
gpsbabel/gui/appname.h
gpsbabel/gui/main.cpp
gpsbabel/gui/serial_mac.cpp
gpsbabel/gui/upgrade.cpp

index d4625b6f1c8f14e05d867d533e61314c853ae86f..44d27a818510508506d31afc81f408cf94a6565a 100755 (executable)
@@ -1,4 +1,4 @@
-# $Id: app.pro,v 1.8 2009-09-02 19:05:27 robertl Exp $
+# $Id: app.pro,v 1.9 2009-09-06 17:04:36 robertl Exp $
 #
 
 CONFIG += qt release 
@@ -25,8 +25,7 @@ UI_DIR = tmp
 RESOURCES = app.qrc 
 RC_FILE = app.rc
 
-win32:TARGET=gpsbabelfe
-unix:TARGET=gpsbabelfe-bin
+TARGET=GPSBabelFE
 
 extras.commands = (make -f makeextras.mak)
 extras.target = extras
index 82d84f15be757471cc3996e03b883ed20db0b21a..162531a2aa36589e4dbf2204319d3566de3298bb 100644 (file)
@@ -1,4 +1,4 @@
-// $Id: appname.h,v 1.1 2009-07-05 21:14:56 robertl Exp $
+// $Id: appname.h,v 1.2 2009-09-06 17:04:36 robertl Exp $
 //
 //------------------------------------------------------------------------
 //
@@ -21,6 +21,6 @@
 //
 #ifndef APPNAME_H
 #define APPNAME_H
-static const char *appName = "GPSBabelFE";
+static const char *appName = "GPSBabel";
 #endif
 
index 849cb5aaa2b4ee3a6911bad8d8f82d446bf46afc..63c9be9e7aad15e2e37d3499258f332990e2f2cb 100644 (file)
@@ -1,5 +1,5 @@
 // -*- C++ -*-
-// $Id: main.cpp,v 1.5 2009-09-02 19:05:27 robertl Exp $
+// $Id: main.cpp,v 1.6 2009-09-06 17:04:36 robertl Exp $
 //------------------------------------------------------------------------
 //
 //  Copyright (C) 2009  S. Khai Mong <khai@mangrai.com>.
@@ -66,7 +66,7 @@ int main(int argc, char**argv)
 
   QCoreApplication::setOrganizationName("GPSBabel");
   QCoreApplication::setOrganizationDomain("gpsbabel.org");
-  QCoreApplication::setApplicationName("GPSBabelFE");
+  QCoreApplication::setApplicationName("GPSBabel");
 
   MainWindow mainWindow(0);
   mainWindow.show();
index 9c83bea27dd63708d7dc042325f6a3f57d63e0af..1c4d096563c8bb2cf85242b14b5b56a701afe72f 100644 (file)
@@ -73,9 +73,6 @@
 static kern_return_t FindModems(io_iterator_t *matchingServices);
 static kern_return_t GetModemPath(io_iterator_t serialPortIterator, char *bsdPath, CFIndex maxPathSize);
 static int OpenSerialPort(const char *bsdPath);
-static char *LogString(char *str);
-static Boolean InitializeModem(int fileDescriptor);
-static void CloseSerialPort(int fileDescriptor);
 
 // Returns an iterator across all known modems. Caller is responsible for
 // releasing the iterator when iteration is complete.
index 7a446bce979bf9fad857771e58132c39cd8510a2..83d5d03f80e8a8830c734696e482529ca236c0e0 100644 (file)
@@ -1,5 +1,5 @@
 // -*- C++ -*-
-// $Id: upgrade.cpp,v 1.14 2009-09-06 05:04:07 robertl Exp $
+// $Id: upgrade.cpp,v 1.15 2009-09-06 17:04:36 robertl Exp $
 /*
     Copyright (C) 2009  Robert Lipe, robertlipe@gpsbabel.org
 
@@ -91,8 +91,8 @@ QString UpgradeCheck::getOsVersion()
   case QSysInfo::WV_6_1: return "7"; break;
   default:
       return "Windows/Unknown";
-#endif
   }
+#endif
   // FIXME: find something appropriately clever to do for Linux, etc. here.
   return "Unknown";
 }